const crypto/cipher.gcmTagSize
10 uses
crypto/cipher (current package)
gcm.go#L20: gcmTagSize = 16
gcm.go#L34: return newGCM(cipher, gcmStandardNonceSize, gcmTagSize)
gcm.go#L48: return newGCM(cipher, size, gcmTagSize)
gcm.go#L98: g, err := gcm.New(c, gcmStandardNonceSize, gcmTagSize)
gcm.go#L114: return gcmStandardNonceSize + gcmTagSize
gcm.go#L122: ret, out := sliceForAppend(dst, gcmStandardNonceSize+len(plaintext)+gcmTagSize)
gcm.go#L168: if len(ciphertext) < gcmStandardNonceSize+gcmTagSize {
gcm.go#L172: ret, out := sliceForAppend(dst, len(ciphertext)-gcmStandardNonceSize-gcmTagSize)
gcm.go#L266: var tag [gcmTagSize]byte
gcm.go#L306: var expectedTag [gcmTagSize]byte
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |